사이트 내 전체검색
PHP
[php] MagpieRSS (include FEED ON FEEDS)
로빈아빠
https://cmd.kr/php/549 URL이 복사되었습니다.

본문

MagpieRSS

http://magpierss.sourceforge.net/

<?
require_once('magpierss/rss_fetch.inc');
// $TeamUser -> 사이트 이름과 주소가 들어 있다.
while(list($name, $url)=each($rssList))
{
	// fetch_rss 한번 호출로 끝
	$rss = fetch_rss($url);
	$ctime = time();
	// rss중에서 items의 정보를 가져오기로 했다.
	// title, id, desc, 작성일 등등을 가져왔다.
	foreach ($rss->items as $item)
	{
		$title = mysql_escape_string($item[title]);
		$id = $item[link];
		$desc = mysql_escape_string($item[description]);
		$pubdate = $item[pubdate];
		// 위에서 얻어온 정보를 이용해서 Query를 만들어서
		// DB에 저장하면 끝이다.
	}
}
?>



* FEED ON FEEDS 첨부파일 확인
install
1. Download this tarball.
2. Explode it.
3. Copy fof-config-sample.php to fof-config.php, and edit it to contain the correct DB connection information.
  If needed, create a MySQL DB for FEED ON FEEDS.  Or, you can use an existing DB.
4. Upload the entire tree to wherever on your server you want FEED ON FEEDS to live.
5. Load the page http://{your server}/{wherever you put FEED ON FEEDS}/install.php.  The installer will first check that it can connect to your DB, and then attempt to create the necessary two tables.  Then, it will attempt to create a subdirectory called cache where it will store cached copies of RSS feeds.  This part of the installation may fail, as your PHP process may not have permission to create a directory.  You may need to create the directory {wherever you uploaded FEED ON FEEDS to}/cache/ yourself, and make sure it is writable by the PHP process.  If you needed to do that, reload install.php.
6. Just set a password for the admin account and you should be ready to go!

cron
20 * * * * /usr/local/bin/GET http://minutillo.com/steve/fof/update-quiet.php

댓글목록

등록된 댓글이 없습니다.

PHP
871 (9/18P)

Search

Copyright © Cmd 명령어 18.191.74.239